home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Resources / Developers / XAMPP 1.5.4 / Windows installer / xampp-win32-1.5.4-installer.exe / xampp / php-switch.bat < prev    next >
DOS Batch File  |  2005-09-26  |  329b  |  20 lines

  1. @ECHO OFF
  2.  
  3. if exist php\php.exe GOTO Normal
  4. if not exist php\php.exe GOTO Abort
  5.  
  6. :Abort
  7. echo Sorry ... cannot find php cli!
  8. echo Must abort these process!
  9. pause
  10. GOTO END
  11.  
  12. :Normal
  13. set PHP_BIN=php\php.exe
  14. set CONFIG_PHP=install\php-switch.php
  15. %PHP_BIN% -n -d output_buffering=0 %CONFIG_PHP%
  16. GOTO END
  17.  
  18. :END
  19. pause
  20.